projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3710041
)
(cl-cannot-unload): New function.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 16 Jan 2004 18:20:00 +0000
(18:20 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 16 Jan 2004 18:20:00 +0000
(18:20 +0000)
(cl-unload-hook): Defvar this to run cl-cannot-unload.
lisp/emacs-lisp/cl.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl.el
b/lisp/emacs-lisp/cl.el
index b8d9cd5e80ca23a15df8f3602a5d9194891bdccb..b098a467f9f518219a82a768da6314674c9fb4be 100644
(file)
--- a/
lisp/emacs-lisp/cl.el
+++ b/
lisp/emacs-lisp/cl.el
@@
-108,6
+108,10
@@
printer proceeds to the next function on the list.
This variable is not used at present, but it is defined in hopes that
a future Emacs interpreter will be able to use it.")
+(defvar cl-unload-hook '(cl-cannot-unload)
+ "Prevent unloading the feature `cl', since it does not work.")
+(defun cl-cannot-unload ()
+ (error "Cannot unload the feature `cl'"))
;;; Predicates.